home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / Locus / Source / SelectionInsPane.h < prev    next >
Text File  |  1995-06-12  |  879b  |  56 lines

  1.  
  2. /*
  3.     Copyright 1993  Jeremy Slade.  All rights reserved.
  4. */
  5.  
  6. /*
  7.     Project: Locus
  8.  
  9.     File: SelectionInsPane.h
  10.  
  11.     Description:
  12.         Inspector Pane of multiple items
  13.         
  14.     Original Author: Jeremy Slade
  15.  
  16.     Revision History:
  17.         Created
  18.             V.101    JGS    Fri Mar  5 22:22:55 GMT-0700 1993
  19.  
  20. */
  21.  
  22. #ifndef SelectionInsPane_h
  23. #define SelectionInsPane_h
  24.  
  25. #define SelectionInsPane_VERSION        (101)
  26.  
  27.  
  28. #import "InspectorPane.h"
  29.  
  30. @interface SelectionInsPane : InspectorPane
  31. {
  32.     id    countField;
  33.     id    groupLaunchSwitch;
  34.     id    autoLaunchSwitch;
  35. }
  36.  
  37. // Creating, Initializing
  38. + initialize;
  39. - initContent:(const NXRect *)contentRect
  40.     style:(int)aStyle
  41.     backing:(int)bufferingType
  42.     buttonMask:(int)mask
  43.     defer:(BOOL)flag;
  44. - awakeFromNib;
  45. - free;
  46.  
  47. // Inspecting...
  48. - (BOOL)canInspect:anObject;
  49. - showCurrent:sender;
  50. - changeSelectionGroupLaunch:sender;
  51. - changeSelectionAutoLaunch:sender;
  52.  
  53. @end
  54.  
  55. #endif // SelectionInsPane_h
  56.